home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2004-03-02 | 949 b | 39 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="1"
- "COUNT"="1"
- "UIPATH"="Information\Applications"
- "NAME"="Microsoft Plus! Check #2"
- "VERSION"="1.02"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Plus! DME"
- "DESCRIPTION 1"="This plug-in displays if Plus! Digital Media Edition is installed or not."
- "DESCRIPTION 2"="You can't change anything!!!"
- "AUTHOR"="Xteq Systems (CptSiskoX)"
- "CONTACTURL"="http://www.xteq.com/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="Thanks to joeperez for the bug notice"
-
-
-
- sV1="HKEY_CURRENT_USER\Software\Microsoft\Microsoft Plus!\Plus! Digital Media Edition"
-
- Sub Plugin_Initialize
- sT="Not installed"
-
- if RegPathExists(sv1) then
- sT="Detected"
- end if
-
- Call SetUIElement(1,sT)
- Call Disable 'user can't change anything!
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-